home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / binding / EvalBindingResponder.as < prev    next >
Text File  |  2009-02-12  |  739b  |  35 lines

  1. package mx.binding
  2. {
  3.    import mx.core.mx_internal;
  4.    import mx.rpc.IResponder;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class EvalBindingResponder implements IResponder
  9.    {
  10.       
  11.       mx_internal static const VERSION:String = "3.0.0.0";
  12.        
  13.       
  14.       private var binding:Binding;
  15.       
  16.       private var object:Object;
  17.       
  18.       public function EvalBindingResponder(param1:Binding, param2:Object)
  19.       {
  20.          super();
  21.          this.binding = param1;
  22.          this.object = param2;
  23.       }
  24.       
  25.       public function fault(param1:Object) : void
  26.       {
  27.       }
  28.       
  29.       public function result(param1:Object) : void
  30.       {
  31.          binding.execute(object);
  32.       }
  33.    }
  34. }
  35.